/*FAQ Styles*/
.accordion {
  background-color: #6BD1DF;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 80%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 1em;
  transition: 0.4s;
  border-radius: 24px;
  margin-left: 10%;
}

.active, .accordion:hover {
  background-color: #ccc;
}

.accordion:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.site-contents { /*helps with sticky footer*/
  flex: 1;
}

.active:after {
  content: "\2212";
}

.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  max-width: 70%;
  margin: auto 15%;
}

.panel p {
	margin: 3% 5%;
}

@media screen and (max-width: 500px) {
	.big_screen_content {
		display: none;
	}
	.tablet_content {
		display: none;
	}
}

@media screen and (min-width: 901px) {
	.small_screen_content {
		display: none;
}
.tablet_content {
		display: none;
	}
}

@media screen and (max-width: 900px) and (min-width: 501px) {
	.tablet_content {
		display: block;
	}
	
	.big_screen_content {
		display: none;
	}
.small_screen_content {
		display: none;
}
.medium_screen_content {
	display: none;
}
